home *** CD-ROM | disk | FTP | other *** search
/ HamCall (April 1991) / HAMCALL CD-ROM (Buckmaster)(April 1991).BIN / amateur / bbsqth / osqth.doc < prev    next >
Text File  |  1990-10-14  |  3KB  |  83 lines

  1. This code and all associated data may be freely exchanged for non-pecuniary
  2. purposes.  Services or efforts that compete in any way with services or
  3. products offered commercially by Buckmaster are expressly forbidden.
  4.  
  5.  
  6. OSQTH provides an online QTH lookup function for BBS' with
  7. the WA7MBL 'OS' function or it equiv. To install it, copy 
  8. OSQTH.COM and OSCFG.BIN to the BBS default directory.  Add 
  9. OSQTH.COM as the OS funstion server in the BBS config file 
  10. for all ports desired.  OSCFG.BIN must be modified to match 
  11. your system.
  12.  
  13. Type 
  14.  
  15. DEBUG OSQTH.BIN
  16.  
  17. to load the file for editing.
  18.  
  19. The first 10 bytes (starting at 100) are flags.
  20. The first byte is 0 for no Desqview, and 1 for Desqview
  21. The second byte is 0 for no echo to screen, and 1 for echo.
  22. This decides if the local BBS screen will display the CD-ROM
  23. reply.  if echo is on, the reply will overwrite the WA7MBL 
  24. status line, but will not  harm anything doing it.
  25.  
  26. The next 8 bytes are port flags, starting at 102 for port 1
  27. If your CD ROM drive turns off interrupts to read a sector
  28. (Many do), then incomming characters can be lost unless the 
  29. RTS line is dropped on each active port for the duration of 
  30. the read.  OSQTH will drop RTS on each of the 8 available 
  31. ports that have thier coresponding byte flag set to a '1'.
  32. There is no harm in dropping RTS for the CD ROM read even if 
  33. it doesn't shut off the interrupts, so it's better to set 
  34. the flags just to be safe.
  35.  
  36. Use the Debug 'E' command to enter parameters.  For example,
  37. suspose your system has three active ports, 1,2,3, running
  38. under Desqview, and you want screen echo off.  Type in the 
  39. following command:
  40.  
  41. -E 100,1,0,1,1,1,0,0,0,0,0
  42.  
  43. The first 1 was for Desqview, the second set echo off, the
  44. next 3 1s were the three ports starting at port 1.  Notice I
  45. put zeros in the 5 remaining unused ports.
  46.  
  47. The next two parameters are text.  The first is the FULL
  48. path and file name for the CD-ROM data.  The next is the
  49. path only for the drive and directory for the QTH log files,
  50. one per port.
  51.  
  52. To enter the CD-ROM data file name, type the command: (using
  53. your drive, path, and filename, of course!)
  54.  
  55. -E 10A,"E:\CALLS\HAMCALL.129",0
  56.  
  57. Note the trailing 0, it must be there!
  58.  
  59. To enter the log directory type the command:
  60.  
  61. -E 15A,"C:\QTHLOGS\",0
  62.  
  63. Note the trailing 0 again, and the final '\' on the path,
  64. both must be there.  The directory specified must exist,
  65. OSQTH won't create it.
  66.  
  67. Finally, to save the data, type:
  68.  
  69. -w
  70.  
  71. and then to exit:
  72.  
  73. -q
  74.  
  75. You're done!
  76.  
  77. For any additional help or information contact WA4ONG at the
  78. WA4ONG BBS in Richmond, VA
  79.  
  80. This code and all associated data may be freely exchanged for non-pecuniary
  81. purposes.  Services or efforts that compete in any way with services or
  82. products offered commercially by Buckmaster are expressly forbidden.
  83.